home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xolox_installed.nasl < prev    next >
Text File  |  2005-03-08  |  1KB  |  58 lines

  1. #
  2. # This script was written by Xue Yong Zhi <xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11431);
  10. # script_cve_id("CVE-MAP-NOMATCH");
  11.  
  12.  script_version("$Revision: 1.5 $");
  13.  
  14.  name["english"] = "XoloX is installed";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is using XoloX - a p2p software, 
  20. which may not be suitable for a business environment. 
  21.  
  22. Solution : Uninstall this software
  23. Risk factor : Low";
  24.  
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Determines if XoloX is installed";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi");
  36.  family["english"] = "Peer-To-Peer File Sharing";
  37.  script_family(english:family["english"]);
  38.  
  39.  script_dependencies("netbios_name_get.nasl",
  40.               "smb_login.nasl","smb_registry_access.nasl");
  41.  script_require_keys("SMB/name", "SMB/login", "SMB/password",
  42.              "SMB/domain","SMB/transport");
  43.  
  44.  script_require_ports(139, 445);
  45.  exit(0);
  46. }
  47.  
  48.  
  49. include("smb_nt.inc");
  50.  
  51.  
  52. rootfile = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\XoloX", item:"DisplayName");
  53. if(rootfile)
  54. {
  55.  security_note(get_kb_item("SMB/transport"));
  56. }
  57.  
  58.